Software Reuse
epub |eng | 2009-07-15 | Author:Krzysztof Cwalina,Brad Abrams & Brad Abrams

JOE DUFFY In addition to deadlock, invoking a callback under a lock like this can cause reentrancy. Locks on the CLR support recursive acquires, so if the callback somehow manages ...
( Category: Software Reuse July 4,2023 )
epub |eng | 2015-07-30 | Author:Sarkar, Pushpak

Figure 8.3 Data profiling results on reference data Data profiling tools typically utilize a set of algorithms that employ statistical and probabilistic technologies to analyze and explore the quality of ...
( Category: Software Reuse June 30,2020 )
epub |eng | | Author:Ben Lopatin

from django.conf import settings from django.core.exceptions import ImproperlyConfigured from myapp.client import ApiClient if not getattr(settings, "MYAPP_API_KEY"): raise ImproperlyConfigured("MYAPP_API_KEY must be set") try: USE_CACHING = settings.MYAPP_CACHE_SETTINGS["USE_CACHING"] except (AttributeError, KeyError): USE_CACHING = ...
( Category: Software Development June 14,2020 )
epub |eng | 2020-01-01 | Author:Bilgin Ibryam & Roland Huß [Bilgin Ibryam]

( Category: Software Development March 30,2020 )
epub |eng | 2018-12-20 | Author:Diogo Resende & David Herron & Valentin Bojinov [Diogo Resende]

( Category: Software Reuse March 28,2020 )
epub |eng | 2018-10-03 | Author:Steven Lott

( Category: Object-Oriented Design March 22,2020 )
epub |eng | 2019-04-25 | Author:Roland Huß & Bilgin Ibryam [Roland Huß]

( Category: Software Development March 21,2020 )
epub, pdf |eng | 1997-03-11 | Author:Martin Fowler

8.5.1 Plans and Protocols as Graphs We can also represent a plan as a directed acyclic graph (DAG) of proposed actions. The arcs on the graph correspond to the dependency ...
( Category: Object-Oriented Design March 12,2020 )
epub |eng | | Author:Dmitri Nesteruk

As you can see, TextRange just stores the start and end points to which it applies, as well as the actual formatting information—whether we want to capitalize text as well ...
( Category: Software Development March 3,2020 )
epub, mobi |eng | 2019-08-09 | Author:Prateek Jadhwani

Once this is done, we can set up our Readme.md file for a demo section. You can add to the Readme.md file about the attributes, and how it can be ...
( Category: Software Reuse September 12,2019 )
mobi, epub |eng | 2019-05-12 | Author:Dmitri Nesteruk

Just to be safe, we force GC at this point. Finally, we use the dotMemory unit testing API to output the total amount of memory taken up by the program. ...
( Category: Object-Oriented Design May 31,2019 )
epub |eng | 1995-03-02 | Author:Erich Gamma & Richard Helm & Ralph Johnson & John Vlissides

Sample Code The following code shows how to implement user interface decorators in C++. We’ll assume there’s a Component class called VisualComponent. We define a subclass of VisualComponent called Decorator, ...
( Category: Software Reuse March 3,2015 )
epub |eng | 2010-05-10 | Author:Knowlton

Summary This chapter’s project explored how to connect to remote computers and perform various operations using Python. The following topics were addressed:• How to build a web server entirely in ...
( Category: Software Reuse March 26,2014 )